Package kernpruefung.bnz.util
Class CharSets
- java.lang.Object
-
- kernpruefung.bnz.util.CharSets
-
public class CharSets extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisDigit(char ch)Returns true if ch is a digit, otherwise false.static booleanisPLZCharsItl(char ch)Returns true if ch is plzCharsItl, otherwise false.
-
-
-
Method Detail
-
isDigit
public static boolean isDigit(char ch)
Returns true if ch is a digit, otherwise false.digit: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- Parameters:
ch- character to be checked if it is a digit- Returns:
- true / false
-
isPLZCharsItl
public static boolean isPLZCharsItl(char ch)
Returns true if ch is plzCharsItl, otherwise false.- Parameters:
ch- character- Returns:
- true / false
-
-